home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / v cisle / acehtml / acehtmlfreeware.exe / scriptdef / Write and Slide.sd < prev   
INI File  |  2004-06-28  |  1KB  |  53 lines

  1. [SUBJECT]
  2. Description=Initially adds letters one by one, then scrolls the message to the left
  3. ImageIndex=-1
  4. Folder=Text Effects
  5.  
  6.  
  7. [HEAD_TEXT]
  8. ;<!-- This script and many more are available free online at -->
  9. ;<!-- The JavaScript Source!! http://javascript.internet.com -->
  10. ;
  11. ;<script language="JavaScript">
  12. ;
  13. ;<!-- Begin
  14. ;var Message="`message`";
  15. ;var place=1;
  16. ;function scrollIn() {
  17. ;window.status=Message.substring(0, place);
  18. ;if (place >= Message.length) {
  19. ;place=1;
  20. ;window.setTimeout("scrollOut()",300); 
  21. ;} else {
  22. ;place++;
  23. ;window.setTimeout("scrollIn()",50); 
  24. ;   } 
  25. ;}
  26. ;function scrollOut() {
  27. ;window.status=Message.substring(place, Message.length);
  28. ;if (place >= Message.length) {
  29. ;place=1;
  30. ;window.setTimeout("scrollIn()", 100);
  31. ;} else {
  32. ;place++;
  33. ;window.setTimeout("scrollOut()", 50);
  34. ;   }
  35. ;}
  36. ;// End -->
  37. ;</script>
  38.  
  39.  
  40.  
  41.  
  42. [BODY_TAG]
  43. ;onLoad="scrollIn()"
  44.  
  45.  
  46.  
  47. [`message`]
  48. Kind=S
  49. Value=Yet another simple scroll from TJS!  You could have done it!!
  50.  
  51.  
  52.  
  53.